home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / shared.dir / 07001_Exit App.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  693 b   |  27 lines

  1. global gSICDPath
  2.  
  3. on exitApp
  4.   SetCursor(#wait)
  5.   puppetSound(0)
  6.   set the fileName of window "quit" to gSICDPath & "quit"
  7.   set the modal of window "quit" to 1
  8.   set the windowType of window "quit" to 2
  9.   set the visible of window "quit" to 0
  10.   set vRect to the rect of window "quit"
  11.   set vLeft to the stageLeft + 320 - (getAt(vRect, 3) / 2)
  12.   set vRight to vLeft + getAt(vRect, 3)
  13.   set vTop to the stageTop + 240 - (getAt(vRect, 4) / 2)
  14.   set vBottom to vTop + getAt(vRect, 4)
  15.   set the rect of window "quit" to rect(vLeft, vTop, vRight, vBottom)
  16.   open(window "quit")
  17.   pause()
  18.   SetCursor(#normal)
  19. end
  20.  
  21. on exitApp2
  22.   tell the stage
  23.     HideAllSprites()
  24.     navGoTo("end")
  25.   end tell
  26. end
  27.